home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / katz / makefile < prev    next >
Makefile  |  2000-06-23  |  434b  |  20 lines

  1.  
  2. katz.prc: code0001.katz.grc tAIB03e8.bin
  3.     build-prc  katz.prc "Katz" Katz *.grc *.bin
  4.     ls -l *.prc
  5.  
  6. tAIB03e8.bin: katz.rcp katz.h katz.ico
  7.     pilrc katz.rcp 
  8.     txttobmp <katz.ico >tAIB03e8.bin
  9.     txttobmp <katzsm.ico >tAIB03e9.bin
  10.  
  11. code0001.katz.grc: katz.o
  12.     m68k-palmos-coff-gcc katz.o -o katz
  13.     m68k-palmos-coff-obj-res katz
  14.  
  15. katz.o: katz.c katz.h
  16.     m68k-palmos-coff-gcc -O3 -c katz.c -o katz.o 
  17.  
  18. clean:
  19.     rm *.prc *.grc *.bin katz katz.o
  20.